/* parametros iniciales */
*{
    margin: 0;
    box-sizing: border-box;
}

body {
    /* Tamaño de la ventana */
    width: 100vw;
    min-height: 100vh;
    background-color: rgb(3, 61, 32);
    background-image: url();
  }
  

  .cabecera {
  /* ancho y alto */
    width: 100vw;
    height: 10vh;
    text-align: center;
    background-color:rgb(3, 61, 32);
  /* para fijar cabecera */
    position: fixed;
    top: 0;
  }
  

  .pie_pagina {
    /*ancho y altura*/
    width: 100vw;
    height: 3vh;
    background-color: rgb(70, 167, 247);
  
    /* fijar cabecera */
    position: fixed;
    bottom: 0;
  }
  

  .botonera {
    width: 95%;
    margin: auto;
    padding-top: 1%;
    display: flex;
    justify-content: space-between;
  }



  /* formato al contenido */
  /* sección principal */
  .principal {
    /* tamaño, ancho y altura*/
    width: 90vw;
    margin: auto; /* para centrar */
    margin-top: 10vh; /* espacio que ocupa la cabecera */
    margin-bottom: 3vh;
    min-height: 87vh; /* altura disponible */
    background-color: rgb(61, 155, 73);
  

    /* organizar contenido */
    display: flex;
    flex-direction: column;
  }
  
  /* dar tamño a cada una de las secciones
  100% de anho 
  100% de alto
  color diferente de fondo */
  
  .presentacion {
    /* tamaño, ancho y altura*/
    width: 100%;
    min-height: 87vh; /* altura disponible */
    display: flex;
    justify-content: center;
    align-items: center;
  
    background-color: rgb(109, 136, 84);
  }


  .titulo_principal {
    /* formato del titulo*/
    font-family: "Poltawski Nowy", serif;
    font-size: 10vmax;
    color: rgb(83, 131, 68);
    text-align: center;
  }


  .conociendome {
    /* tamaño, ancho y altura*/
    width: 100%;
    min-height: 87vh; /* altura disponible */
  
    background-color: rgb(15, 69, 170);
  }
  /* Estilo para las preguntas */



  .pregunta {
      margin-bottom: 20px;
      font-weight: bold;
      font-size: 24px;
      
    }
    
    /* Estilo para el contenedor de la pregunta */


  .respuesta {
      padding: 20px;
      border-radius: 8px;
    
     
    }


  .illia {
  /* tamaño, ancho y altura*/
    width: 100%;
    min-height: 87vh; /* altura disponible */
      
    background-color: #b89d08;
    box-sizing: border-box;
      }
      
      
  .body{
        font-family: 'Muli', sans-serif;
        overflow: hidden;
        margin: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #43944a;
      }
      
      .container {
        width: 100%;
        display: flex;
        padding: 0 20px;
      }
      
      .slide {
        position: relative;
        cursor: pointer;
        height: 80vh;
        flex: 1;
        margin: 10px;
        border-radius: 20px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        transition: .5s
      }
      
      .slide > img{
        width: 100%;
        height: 100%;
      }
      
      .slide > h3{
        position: absolute;
        color: #fff;
        bottom: 10px;
        left: 10px;
        opacity: 0;
        transition: .5s
        
      }
      
      .slide.active{
        flex: 10;
      }
      
      .slide.active > h3{
        opacity: 1
      }
      
      
      
      
      .futuro {
        background-color: #53397e;
      
        /* tamaño, ancho y altura*/
        width: 100%;
        min-height: 87vh; /* altura disponible */
      }
      
      .contactos {
        background-color: #161342;
      
        /* tamaño, ancho y altura*/
        width: 100%;
        min-height: 87vh; /* altura disponible */
      }  